@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');   
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&display=swap');
:root {
            --gold: #C6B05A;
            --gold-dark: #A89453;
            --navy: #2c3142;
            --navy-light: #1a1d2e;
            --text-light: #FFF6D5;
            --white: #ffffff;
            --kb-gold:#C6B05A;
            --kb-gold-light:#dccb88;
            --kb-dark:#1d2233;
            --kb-dark-2:#111522;
            --kb-text:#6f6f6f;
            --kb-white:#ffffff;
            --kb-bg:#f7f3ea;
        }

        html, body { 
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        body { font-family: 'Poppins', sans-serif!important; color: #333; line-height: 1.6; }
        h1, h2, h3, h4 { font-family: 'Cormorant Infant', serif!important; font-weight: 700; color: var(--navy); }

        /* Navbar */
        .navbar { background: var(--navy); padding: 15px 0; border-bottom: 2px solid var(--gold); }
        .nav-link { color: var(--white) !important; font-weight: 500; margin: 0 10px; transition: 0.3s; }
        .nav-link:hover { color: var(--gold) !important; }
        .btn-consult { background: var(--gold); color: var(--navy); font-weight: 600; border-radius: 0; padding: 10px 25px; border: none; }
        .navbar.navbar-expand-lg img{width:260px!important;}
        .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar-toggler {
    border-color: #fff;
}
        /* Hero Section */
        .hero { 
            background: linear-gradient(rgba(26, 29, 46, 0.85), rgba(26, 29, 46, 0.85)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&q=80');
            background-size: cover; background-position: center;
            height: 80vh; display: flex; align-items: center; color: var(--white);
        }
        .hero h1 { color: var(--gold); font-size: 3.5rem; margin-bottom: 20px; }
        .hero p { font-size: 1.2rem; max-width: 600px; color: #e0e0e0; }

        /* Content Sections */
        .section-padding { padding: 80px 0; }
        .bg-light-gold { background-color: #fdfbf2; }
        .text-justify { text-align: justify; }
        
        /* About Section */
        .about-box { border-left: 5px solid var(--gold); padding-left: 30px; }
        .about-img { border: 10px solid var(--white); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

        /* Services Grid */
        .service-card { 
            background: var(--white); padding: 40px; border: 1px solid #eee; 
            transition: 0.4s; height: 100%; position: relative;
        }
        .service-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .service-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }

        /* Contact Section */
        .contact-info { background: var(--navy); color: var(--white); padding: 50px; }
        .form-control { border-radius: 0; padding: 12px; border: 1px solid #ddd; }

        /* Footer */
        footer { background: var(--navy-light); color: #bbb; padding: 60px 0 20px; }
        .footer-title { color: var(--white); margin-bottom: 25px; font-size: 1.5rem; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #bbb; text-decoration: none; }
        .footer-links a:hover { color: var(--gold); }
        
                .navbar { background-color: #1a1a1a !important; }
.nav-link:hover { color: #D4AF37 !important; }
.btn-consult:hover { 
    background-color: #fff !important; 
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    color:#000;
}
.dropdown-item:hover { background-color: #f8f9fa; color: #D4AF37; }



/* ============================= */

.kb-wrapper{
    font-family:'Poppins',sans-serif;
    background:var(--kb-bg);
    color:var(--kb-dark);
    overflow:hidden;
    position:relative;
}

/* =============================
   GLOBAL
============================= */

.kb-wrapper *{
    box-sizing:border-box;
}

.kb-wrapper a{
    text-decoration:none;
}

.kb-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 22px;

    border-radius:100px;

    background:rgba(198,176,90,.12);

    border:1px solid rgba(198,176,90,.25);

    color:var(--kb-gold);

    font-size:12px;
    letter-spacing:2px;
    font-weight:600;

    text-transform:uppercase;
}

.kb-badge::before{
    content:'';
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--kb-gold);
}

.kb-heading,
.kb-team-name{
    font-family:'Cormorant Infant',serif;
}

.kb-heading{
    font-size:68px;
    line-height:1;
    font-weight:700;
    margin:25px 0;
    color:var(--kb-dark);
}

.kb-heading span{
    color:var(--kb-gold);
}

.kb-text{
    color:var(--kb-text);
    line-height:2;
    font-size:15px;
}

/* =============================
   ABOUT SECTION
============================= */

.kb-about{
    position:relative;
    padding:120px 0 80px;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(198,176,90,.12),
    transparent 28%),

    radial-gradient(circle at bottom right,
    rgba(29,34,51,.08),
    transparent 30%),

    var(--kb-bg);
}

/* ABSTRACT BLOBS */

.kb-about::before{
    content:'';
    position:absolute;

    width:520px;
    height:520px;

    top:-180px;
    left:-180px;

    background:
    linear-gradient(
        135deg,
        rgba(198,176,90,.18),
        transparent
    );

    border-radius:
    64% 36% 30% 70% /
    38% 45% 55% 62%;

    animation:kbBlob1 14s infinite alternate linear;
}

.kb-about::after{
    content:'';
    position:absolute;

    width:420px;
    height:420px;

    bottom:-150px;
    right:-150px;

    background:
    linear-gradient(
        135deg,
        rgba(29,34,51,.08),
        transparent
    );

    border-radius:
    38% 62% 70% 30% /
    45% 38% 62% 55%;

    animation:kbBlob2 16s infinite alternate linear;
}

@keyframes kbBlob1{
    100%{
        transform:rotate(18deg) translateY(40px);
    }
}

@keyframes kbBlob2{
    100%{
        transform:rotate(-18deg) translateX(-40px);
    }
}

/* =============================
   FEATURES
============================= */

.kb-feature{
    position:relative;

    display:flex;
    gap:18px;

    padding:28px;

    margin-top:25px;

    border-radius:30px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.9),
        rgba(255,255,255,.6)
    );

    border:1px solid rgba(255,255,255,.8);

    backdrop-filter:blur(10px);

    overflow:hidden;

    transition:.45s ease;

    box-shadow:
    0 10px 40px rgba(0,0,0,.05);
}

.kb-feature:hover{
    transform:translateY(-8px);
}

.kb-feature::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(198,176,90,.14),
        transparent
    );

    opacity:0;
    transition:.45s;
}

.kb-feature:hover::before{
    opacity:1;
}

.kb-feature-icon{
    width:68px;
    height:68px;
    min-width:68px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        var(--kb-gold),
        var(--kb-gold-light)
    );

    color:white;
    font-size:24px;

    box-shadow:
    0 14px 28px rgba(198,176,90,.35);

    transition:.4s ease;
}

.kb-feature:hover .kb-feature-icon{
    transform:rotate(-8deg) scale(1.08);
}

.kb-feature h5{
    font-size:20px;
    margin-bottom:10px;
    font-weight:600;
}

.kb-feature p{
    margin:0;
    color:var(--kb-text);
    line-height:1.9;
    font-size:14px;
}

/* =============================
   BUTTON
============================= */

.kb-btn{
    position:relative;

    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-top:35px;

    padding:16px 34px;

    border-radius:100px;

    color:white;

    background:
    linear-gradient(
        135deg,
        var(--kb-gold),
        var(--kb-gold-light)
    );

    overflow:hidden;

    transition:.45s ease;

    box-shadow:
    0 15px 35px rgba(198,176,90,.35);
}

.kb-btn::before{
    content:'';
    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:rgba(255,255,255,.25);

    transition:.6s;
}

.kb-btn:hover::before{
    left:100%;
}

.kb-btn:hover{
    transform:translateY(-5px);
    color:white;
}

/* =============================
   IMAGE
============================= */

.kb-image-wrap{
    position:relative;
    padding:20px;
}

.kb-image-wrap::before{
    content:'';
    position:absolute;
    inset:0;

    border:2px dashed rgba(198,176,90,.35);

    border-radius:40px;

    transform:rotate(-4deg);
}

.kb-image{
    width:100%;

    border-radius:40px;

    position:relative;
    z-index:2;

    transition:.6s ease;

    box-shadow:
    0 30px 60px rgba(0,0,0,.12);
}

.kb-image-wrap:hover .kb-image{
    transform:scale(1.03) rotate(1deg);
}

/* EXPERIENCE */

.kb-exp{
    position:absolute;

    right:-10px;
    bottom:40px;

    z-index:3;

    padding:26px 34px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        var(--kb-dark),
        var(--kb-dark-2)
    );

    color:white;

    box-shadow:
    0 18px 50px rgba(0,0,0,.2);
}

.kb-exp h3{
    font-size:52px;
    line-height:1;
    margin:0;
    color:var(--kb-gold);
    font-weight:700;
}

.kb-exp p{
    margin-top:8px;
    margin-bottom:0;
    font-size:14px;
}

/* =============================
   STATS
============================= */

.kb-stats{
    position:relative;
    margin-top:-25px;
    z-index:5;
    padding-bottom:80px;
}

.kb-stat-card{
    position:relative;

    padding:45px 25px;

    text-align:center;

    border-radius:34px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.92),
        rgba(255,255,255,.68)
    );

    border:1px solid rgba(255,255,255,.7);

    backdrop-filter:blur(10px);

    overflow:hidden;

    transition:.45s ease;

    box-shadow:
    0 20px 40px rgba(0,0,0,.06);
}

.kb-stat-card:hover{
    transform:translateY(-10px);
}

.kb-stat-card::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        transparent,
        rgba(198,176,90,.08)
    );

    opacity:0;
    transition:.45s;
}

.kb-stat-card:hover::before{
    opacity:1;
}

.kb-stat-icon{
    width:82px;
    height:82px;

    margin:auto auto 24px;

    border-radius:26px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        var(--kb-gold),
        var(--kb-gold-light)
    );

    color:white;
    font-size:30px;

    box-shadow:
    0 14px 28px rgba(198,176,90,.35);

    transition:.45s ease;
}

.kb-stat-card:hover .kb-stat-icon{
    transform:rotate(-10deg) scale(1.08);
}

.kb-stat-card h3{
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
    color:var(--kb-dark);
}

.kb-stat-card p{
    margin:0;
    color:var(--kb-text);
}

/* =============================
   TEAM SECTION
============================= */

.kb-team{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        var(--kb-dark),
        var(--kb-dark-2)
    );
}

.kb-team-title{
    color:white;
    font-size:60px;
    font-family:'Cormorant Infant',serif;
    font-weight:700;
    margin-top:25px;
}

.kb-team-card{
    position:relative;

    border-radius:34px;

    overflow:hidden;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.1),
        rgba(255,255,255,.04)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    transition:.45s ease;

    height:100%;
}

.kb-team-card:hover{
    transform:translateY(-10px);
}

.kb-team-top{
    height:120px;

    background:
    linear-gradient(
        135deg,
        var(--kb-gold),
        var(--kb-gold-light)
    );
}

.kb-avatar{
    width:95px;
    height:95px;

    margin:auto;
    margin-top:-48px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:white;

    border:6px solid white;

    color:var(--kb-dark);

    font-size:26px;
    font-weight:700;

    position:relative;
    z-index:2;
}

.kb-team-content{
    padding:30px 24px;
    text-align:center;
}

.kb-team-name{
    font-size:32px;
    color:white;
    margin-bottom:10px;
}

.kb-team-role{
    color:var(--kb-gold-light);
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:15px;
    display:block;
}

.kb-team-content p{
    color:rgba(255,255,255,.7);
    line-height:1.9;
    font-size:14px;
    margin:0;
}

/* =============================
   RESPONSIVE
============================= */

@media(max-width:991px){

    .kb-heading{
        font-size:48px;
    }

    .kb-team-title{
        font-size:44px;
    }

    .kb-exp{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:-40px;
        width:max-content;
    }
}

@media(max-width:767px){

    .kb-heading{
        font-size:38px;
    }

    .kb-team-title{
        font-size:34px;
    }

    .kb-feature{
        flex-direction:column;
    }
You have made no changes to save.

    .kb-team{
        padding:90px 0;
    }
}



    /* Link Hover Effects */
    .footer-links li {
        margin-bottom: 10px;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
        transition: 0.3s;
    }
    .footer-links a:hover {
        color: #C6B05A;
        padding-left: 5px;
    }

    /* Social Icons Styling */
    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #f4f4f4;
        color: #2c3142;
        border-radius: 50%;
        margin-right: 8px;
        text-decoration: none;
        transition: 0.3s;
    }
    .social-icons a:hover {
        background: #C6B05A;
        color: #fff;
        transform: translateY(-3px);
    }
.accordion-button:not(.collapsed) { background-color: #fff; color: #c6b05a!important; }
		.accordion-button{font-weight:600!important; font-size:1.3rem!important;}
.form-dark.shadow-lg .form-control {
    background: #fff !important;
    border: 1px solid #64748b!important;
    color: #625f5f !important;
    border-radius: 8px!important;
    padding: 12px!important;
}

.form-dark {
    background: #1E293B;
    padding: 50px;
    
    
    border-radius: 16px;
    border: 1px solid #c6b05a;
}
.btn-cyber {
    background: #c6b05a!important;
    color: #2c3142!important;
    font-weight: 700;
    padding: 15px;
    border: none;
    width: 100%;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-cyber:hover{background:#fff!important;}
.map-frame {border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    border: 10px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    filter: contrast(1.2) grayscale(0.5);
}

.rating {
    color: #c6b05a;
    margin-bottom: 10px;
}
p a{color:#c6b05a;}

.map-section-con {padding:50px 0;}
.map-section-con iframe{width:100%; height:450px;}

.mobile-fixed-buttons{
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100%);
    display: none;
    padding: 5px;
    gap: 10px;
    background:#000;
    z-index: 99999;
}

.mobile-fixed-buttons a{
    flex: 1;
    text-decoration: none;
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    
}

.mobile-call-btn{
    background: #C6B05A;
}

.mobile-call-btn:hover{
    background: #fff;
    color:#000;
}

.mobile-whatsapp-btn{
    background: #C6B05A;
}

.mobile-whatsapp-btn:hover{
    background: #fff;
    color:#000;
}

/* Show only on mobile */
@media (max-width: 768px){
    .mobile-fixed-buttons{
        display: flex;
    }
}
.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 99;
}
.btn-whatsapp-pulse:hover{color: #fff;}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}
.btn-whatsapp-pulse-border {
    bottom: 120px;
    right: 20px;
    animation-play-state: paused;
}
.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }
    75% {
        padding: 50px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


@media (max-width: 767px){
    .btn-whatsapp-pulse {display:none;}
}


.kuberaa-review-wrapper *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

.kuberaa-review-wrapper{
    background:#ffffff;
    padding:60px 15px;
}

.kuberaa-review-container{
    max-width:1200px;
    margin:auto;
}

/* Grid */
.kuberaa-review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* Review Box */
.kuberaa-review-card{
    background:#fff;
    border:2px solid #c6b05a;
    border-radius:20px;
    padding:30px 25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
    height:100%;
}

.kuberaa-review-card:hover{
    transform:translateY(-8px);
}

/* Top Area */
.kuberaa-review-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

/* Initial Circle */
.kuberaa-review-initial{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:#c6b05a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    text-transform:uppercase;
}

/* User Info */
.kuberaa-review-user h3{
    font-size:20px;
    color:#111;
    margin-bottom:5px;
}

.kuberaa-review-user span{
    font-size:14px;
    color:#777;
}

/* Stars */
.kuberaa-review-stars{
    color:#c6b05a;
    font-size:20px;
    margin-bottom:15px;
    letter-spacing:2px;
}

/* Text */
.kuberaa-review-text{
    color:#555;
    line-height:1.8;
    font-size:15px;
}

/* Button */
.kuberaa-review-btn{
    text-align:center;
    margin-top:40px;
}

.kuberaa-review-btn a{
    display:inline-block;
    background:#c6b05a;
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
}

.kuberaa-review-btn a:hover{
    background:#b39d49;
}

/* Tablet */
@media(max-width:991px){

    .kuberaa-review-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media(max-width:767px){

    .kuberaa-review-wrapper{
        padding:40px 15px;
    }

    .kuberaa-review-grid{
        grid-template-columns:1fr;
    }

    .kuberaa-review-card{
        padding:25px 20px;
    }

    .kuberaa-review-user h3{
        font-size:18px;
    }

    .kuberaa-review-text{
        font-size:14px;
        line-height:1.7;
    }

    .kuberaa-review-btn a{
        width:100%;
        max-width:300px;
    }

}


.ka-blog-section{
    background:#ffffff;
}

.ka-blog-title{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.ka-blog-subtitle{
    color:#666;
    font-size:16px;
}

.ka-blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:0.4s;
    height:100%;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.ka-blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 35px rgba(0,0,0,0.12);
}

.ka-blog-img{
    overflow:hidden;
}

.ka-blog-img img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.5s;
}

.ka-blog-card:hover img{
    transform:scale(1.08);
}

.ka-blog-content{
    padding:25px;
}

.ka-blog-date{
    color:#ec1f90;
    font-size:14px;
    margin-bottom:12px;
    font-weight:600;
}

.ka-blog-heading{
    font-size:22px;
    line-height:32px;
    margin-bottom:15px;
    font-weight:700;
}

.ka-blog-heading a{
    color:#111;
    text-decoration:none;
    transition:0.3s;
}

.ka-blog-heading a:hover{
    color:#369ca9;
}

.ka-blog-text{
    color:#666;
    line-height:28px;
    margin-bottom:20px;
}

.ka-blog-btn{
    display:inline-block;
    padding:12px 28px;
    background:#369ca9;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:0.3s;
    font-weight:600;
}

.ka-blog-btn:hover{
    background:#2198ec;
    color:#fff;
}

@media(max-width:991px){

    .ka-blog-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .ka-blog-title{
        font-size:28px;
    }

    .ka-blog-heading{
        font-size:20px;
        line-height:30px;
    }

}


        .ka-single-banner{
            background:linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
            url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1600');
            background-size:cover;
            background-position:center;
            padding:120px 0;
            color:#fff;
            text-align:center;
        }

        .ka-single-banner h1{
            font-size:58px;
            line-height:1.3;
            font-weight:700;
            max-width:900px;
            margin:auto;
            font-family:'Cormorant Infant',serif;
        }

        .ka-single-meta{
            margin-top:20px;
            font-size:15px;
            opacity:0.9;
        }

        .ka-single-meta span{
            margin:0 10px;
        }

        .ka-single-section{
            padding:90px 0;
        }

        .ka-single-card{
            background:#fff;
            border-radius:24px;
            overflow:hidden;
            box-shadow:0 10px 40px rgba(0,0,0,0.06);
        }

        .ka-single-image img{
            width:100%;
            height:auto;
            display:block;
        }

        .ka-single-content{
            padding:45px;
        }

        .ka-single-content p{
            font-size:17px;
            line-height:34px;
            color:#555;
            margin-bottom:25px;
        }

        .ka-single-content h2,
        .ka-single-content h3,
        .ka-single-content h4{
            color:#111;
            margin-top:35px;
            margin-bottom:18px;
            font-weight:700;
        }

        .ka-single-content ul{
            padding-left:20px;
            margin-bottom:25px;
        }

        .ka-single-content ul li{
            margin-bottom:12px;
            color:#555;
            line-height:30px;
        }

        .ka-sidebar-box{
            background:#fff;
            border-radius:24px;
            padding:35px;
            margin-bottom:30px;
            box-shadow:0 10px 40px rgba(0,0,0,0.06);
        }

        .ka-sidebar-box h4{
            font-size:30px;
            margin-bottom:25px;
            color:#111;
            font-family:'Cormorant Infant',serif;
            font-weight:700;
        }

        .ka-recent-post{
            display:flex;
            gap:15px;
            margin-bottom:20px;
            align-items:center;
        }

        .ka-recent-post img{
            width:85px;
            height:85px;
            object-fit:cover;
            border-radius:12px;
        }

        .ka-recent-post a{
            color:#111;
            text-decoration:none;
            line-height:28px;
            transition:0.3s;
            font-weight:600;
        }

        .ka-recent-post a:hover{
            color:#ec1f90;
        }

        .ka-category-box a{
            display:inline-block;
            padding:10px 18px;
            background:#f3f3f3;
            margin:5px;
            border-radius:50px;
            text-decoration:none;
            color:#111;
            transition:0.3s;
            font-size:14px;
        }

        .ka-category-box a:hover{
            background:#369ca9;
            color:#fff;
        }

        .ka-share-box{
            margin-top:50px;
            padding-top:30px;
            border-top:1px solid #eee;
        }

        .ka-share-box a{
            width:45px;
            height:45px;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            border-radius:50%;
            background:#369ca9;
            color:#fff;
            margin-right:10px;
            transition:0.3s;
            text-decoration:none;
        }

        .ka-share-box a:hover{
            background:#ec1f90;
            transform:translateY(-4px);
        }

        @media(max-width:991px){

            .ka-single-banner{
                padding:90px 0;
            }

            .ka-single-banner h1{
                font-size:42px;
            }

            .ka-single-content{
                padding:30px;
            }

        }

        @media(max-width:767px){

            .ka-single-banner h1{
                font-size:30px;
            }

            .ka-single-content{
                padding:24px;
            }

            .ka-single-content p{
                font-size:16px;
                line-height:30px;
            }

        }
        
        

.ka-sidebar-box{
    background:#fff;
    border-radius:24px;
    padding:35px;
    margin-bottom:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.ka-sidebar-box h4{
    font-size:32px;
    margin-bottom:28px;
    font-weight:700;
    color:#111;
    font-family:'Cormorant Infant',serif;
    position:relative;
}

.ka-sidebar-box h4::after{
    content:'';
    width:60px;
    height:3px;
    background:#ec1f90;
    position:absolute;
    left:0;
    bottom:-10px;
}

.ka-search-form{
    position:relative;
}

.ka-search-form input{
    width:100%;
    height:60px;
    border:none;
    background:#f5f5f5;
    border-radius:60px;
    padding:0 70px 0 25px;
    outline:none;
    font-size:15px;
}

.ka-search-form button{
    width:50px;
    height:50px;
    border:none;
    background:#369ca9;
    color:#fff;
    border-radius:50%;
    position:absolute;
    top:5px;
    right:5px;
    transition:0.3s;
}

.ka-search-form button:hover{
    background:#2198ec;
}

.ka-recent-post{
    display:flex;
    gap:16px;
    margin-bottom:22px;
    padding-bottom:22px;
    border-bottom:1px solid #eee;
}

.ka-recent-post:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border:none;
}

.ka-recent-img img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:14px;
}

.ka-recent-content span{
    font-size:13px;
    color:#ec1f90;
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.ka-recent-content h5{
    margin:0;
    line-height:28px;
}

.ka-recent-content h5 a{
    color:#111;
    text-decoration:none;
    font-size:17px;
    transition:0.3s;
    font-weight:600;
}

.ka-recent-content h5 a:hover{
    color:#369ca9;
}

.ka-category-box{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.ka-category-box a{
    display:inline-block;
    padding:10px 18px;
    background:#f3f3f3;
    border-radius:50px;
    text-decoration:none;
    color:#111;
    transition:0.3s;
    font-size:14px;
    font-weight:500;
}

.ka-category-box a:hover{
    background:#369ca9;
    color:#fff;
}

.ka-contact-widget{
    background:linear-gradient(135deg,#369ca9,#2198ec);
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    color:#fff;
}

.ka-contact-widget h3{
    font-size:34px;
    margin-bottom:18px;
    font-family:'Cormorant Infant',serif;
    font-weight:700;
}

.ka-contact-widget p{
    line-height:30px;
    margin-bottom:30px;
    opacity:0.95;
}

.ka-contact-widget a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 30px;
    background:#fff;
    color:#111;
    text-decoration:none;
    border-radius:60px;
    font-weight:700;
    transition:0.3s;
}

.ka-contact-widget a:hover{
    transform:translateY(-4px);
    background:#ec1f90;
    color:#fff;
}
.main-footer ul.footer-links li:has(a[href="/gallery/"]) {
    display: none !important;
}
.main-footer .container p{opacity:1!important;}
.to-area{background-color: #1a1a1a; padding: 5px 0px; border-bottom:1px solid #d4af3769;}    
.top-bar {
            
            display: flex;
            justify-content: right;
            align-items: center;
            gap:20px;
            box-sizing: border-box;
        }

        /* Left Side: Phone Number styling */
        .top-bar-phone {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        /* Right Side: Consultation Button styling */
        .top-bar-btn {
            background-color: #D4AF37;
            color: #ffffff;
            text-decoration: none;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 0px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Hover state for the Consultation Button */
        .top-bar-btn:hover {
            background-color: #ffffff;
            color: #000000;
        }    

@media(max-width:767px){
.to-area{display:none;}
    .ka-sidebar-box{
        padding:25px;
    }

    .ka-sidebar-box h4{
        font-size:28px;
    }

    .ka-contact-widget{
        padding:35px 25px;
    }

    .ka-contact-widget h3{
        font-size:28px;
    }

}
@media(max-width:1366px){
.nav-link.px-3{padding-right: 0.2rem !important;
    padding-left: 0.2rem !important; font-size:13px;}    

}        


.kb-home-blog{display:none!important;}
.main-footer p img{background:transparent!important}
